<form ???='get' ???='controller.php'>
<input type='hidden' name='page' value='StartPage'> <!-- hidden: not visible to the user -->
<input type='???' name='command' value='SignIn'>
Username:
<input type='text' name='username' required><br>
Password:
<input type='???' name='password' ???><br>
<input type='???' value='Cancel'> <!-- regular button -->
<input type='???' ???='Submit'> <!-- submit button -->
</form>
// controller.php; server side script; Of course we will discuss PHP very soon.
<?php
echo $_GET['page'] . '<br>'; // It should be ???.
echo $_GET['command'] . '<br>'; // It should be ???.
echo ???['username'] . '<br>';
echo ???['password'] ??? '<br>';
?>